
/*# sourceMappingURL=custom.min.css.map */
#divLoading
{
	display: none;
}
#divLoading.gizle
{
	display: none;
}
#divLoading.show
{
	display: block;
	position: fixed;
	z-index: 1000000;
	background-image: url('/assets/images/load.gif');
	background-repeat: no-repeat;
	background-position: center;
	left: 0;
	bottom: 0;
	right: 0;
	top: 0;
}
#loadinggif.show
{
	left: 50%;
	top: 50%;
	position: absolute;
	z-index: 99999;
	width: 32px;
	height: 32px;
	margin-left: -16px;
	margin-top: -16px;
}

.service-option
{
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 44px;
	padding: 10px 14px;
	border: 1px solid #dbe3ef;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease, transform .2s ease;
}

.service-option:hover
{
	border-color: #b8c7db;
	box-shadow: 0 4px 14px rgba(31, 45, 61, .08);
	transform: translateY(-1px);
}

.service-option.is-selected
{
	border-color: #405189;
	background: linear-gradient(180deg, rgba(64, 81, 137, .08), rgba(64, 81, 137, .04));
	box-shadow: 0 6px 18px rgba(64, 81, 137, .14);
}

.service-option__checkbox
{
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin: 0;
	cursor: pointer;
}

.service-option__body
{
	min-width: 0;
	flex: 1 1 auto;
}

.service-option__title
{
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
	color: #273142;
	letter-spacing: .01em;
}